home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / libs / phigs / ptk.lha / ptk / include / ptk.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-08-21  |  1.1 KB  |  97 lines

  1. /* include file for complete PHIGS Toolkit */
  2.  
  3. #ifndef _PTK_
  4. #define _PTK_
  5.  
  6. #include "machine.h"
  7.  
  8. #ifdef NURB
  9.  
  10. /* include transforms and nurbs but nothing else */
  11.  
  12. #include "ptktype.h"
  13.  
  14. #include "trantype.h"
  15.  
  16. #include "tranfns.h"
  17.  
  18. #include "nurbtype.h"
  19.  
  20. #include "nurbfns.h"
  21.  
  22. #endif
  23.  
  24. /* toolkit constants */
  25.  
  26. /* toolkit types */
  27.  
  28. #ifndef NURB
  29.  
  30. /* include toolkit provided nurb only is not requested */
  31.  
  32. #include "ptktype.h"
  33.  
  34. #ifdef VMS
  35. #include "dectype.h"
  36. #endif
  37.  
  38. #include "trantype.h"
  39.  
  40. #include "hashtype.h"
  41.  
  42. #include "plibtype.h"
  43.  
  44. #include "cnstype.h"
  45.  
  46. #include "menutype.h"
  47.  
  48. #include "topotype.h"
  49.  
  50. #include "windtype.h"
  51.  
  52. /* toolkit functions */
  53.  
  54. #include "tranfns.h"
  55.  
  56. #include "hashfns.h"
  57.  
  58. #include "plibfns.h"
  59.  
  60. #include "cnsfns.h"
  61.  
  62. #include "menufns.h"
  63.  
  64. #include "phinfns.h"
  65.  
  66. #include "topofns.h"
  67.  
  68. #include "stctfns.h"
  69.  
  70. #include "miscfns.h"
  71.  
  72. #include "tslfns.h"
  73.  
  74. #include "windfns.h"
  75.  
  76. #include "perrfns.h"
  77.  
  78. #include "dbugfns.h"
  79.  
  80. #include "viewfns.h"
  81.  
  82. #endif
  83.  
  84. #ifdef PTKNURB
  85.  
  86. /* include nurbs with rest of toolkit */
  87.  
  88. #include "nurbtype.h"
  89.  
  90. #include "nurbfns.h"
  91.  
  92. #endif
  93.  
  94. #endif
  95.  
  96. /* end of ptk.h */
  97.